* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family:
    "Inter",
    -apple-system,
    Roboto,
    Helvetica,
    sans-serif;
  background-color: #f5deb3;
  line-height: 1.4;
}

/* Header Styles */
.header {
  background-color: #4f1917;
  padding: 1rem 0;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
}

.header-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-image {
  height: 4rem;
  width: auto;
}

.navigation {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: white;
  font-size: 1.5rem;
  font-weight: 400;
  transition: opacity 0.3s ease;
  gap: 0.5rem;
}

.nav-item:hover {
  opacity: 0.8;
}

.nav-icon {
  width: 3.625rem;
  height: 3.125rem;
  object-fit: contain;
}

/* Main content */
.main-content {
  padding: 2rem 0;
}

/* Hero section */
.hero-section {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

.hero-image-wrapper {
  position: relative;
  border-radius: 60px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.hero-image {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
  object-fit: cover;
}

.hero-title {
  position: absolute;
  bottom: 4rem;
  left: 4rem;
}

.hero-title h1 {
  color: #fff;
  font-size: 3rem;
  font-weight: 800;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

/* Gallery section */
.gallery-section {
  max-width: 1400px;
  margin: 4rem auto 0;
  padding: 0 2rem;
}

.gallery-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3rem;
}

.gallery-item {
  width: 100%;
  max-width: 405px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.gallery-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
}

.gallery-image {
  width: 100%;
  height: auto;
  aspect-ratio: 1/1;
  object-fit: cover;
}

/* Footer */
.main-footer {
  background-color: #000;
  color: #fff;
  margin-top: 4rem;
  padding: 3rem 0 1rem;
}

.footer-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto;
  gap: 2rem;
  align-items: start;
}

.footer-logo {
  grid-row: 1 / 2;
  grid-column: 1 / 2;
}

.footer-logo-image {
  height: 120px;
  width: auto;
}

.footer-content {
  grid-row: 1 / 2;
  grid-column: 2 / 3;
  display: flex;
  gap: 4rem;
  justify-content: center;
}

.footer-heading {
  font-size: 2.25rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.contact-phone {
  font-size: 1.5rem;
  font-weight: 400;
}

.address-text {
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.4;
  max-width: 400px;
}

.footer-copyright {
  grid-row: 2 / 3;
  grid-column: 1 / -1;
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid #333;
  margin-top: 2rem;
}

.footer-copyright p {
  font-size: 1.5rem;
  font-weight: 400;
  opacity: 0.8;
}

/* Responsive design */
@media (max-width: 1200px) {
  .header-container {
    padding: 0 1.5rem;
  }

  .hero-section,
  .gallery-section,
  .footer-container {
    padding: 0 1.5rem;
  }

  .main-navigation {
    gap: 2rem;
  }

  .nav-text {
    font-size: 1.25rem;
  }

  .footer-content {
    gap: 3rem;
  }
}

@media (max-width: 968px) {
  .header-container {
    flex-direction: column;
    gap: 1.5rem;
    padding: 1rem;
  }

  .logo {
    height: 60px;
  }

  .main-navigation {
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
  }

  .nav-text {
    font-size: 1.125rem;
  }

  .nav-icon {
    width: 35px;
    height: 30px;
  }

  .hero-title h1 {
    font-size: 2.5rem;
  }

  .hero-title {
    bottom: 2rem;
    left: 2rem;
  }

  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-content {
    justify-content: space-around;
    gap: 2rem;
  }

  .footer-heading {
    font-size: 2rem;
  }

  .contact-phone,
  .address-text {
    font-size: 1.25rem;
  }

  .footer-copyright p {
    font-size: 1.25rem;
  }
}

@media (max-width: 640px) {
  .header-container {
    padding: 0.75rem;
  }

  .main-navigation {
    gap: 1rem;
  }

  .nav-text {
    display: none;
  }

  .nav-icon {
    width: 30px;
    height: 26px;
  }

  .hero-section,
  .gallery-section {
    padding: 0 1rem;
  }

  .hero-image-wrapper {
    border-radius: 30px;
  }

  .hero-title {
    bottom: 1.5rem;
    left: 1.5rem;
  }

  .hero-title h1 {
    font-size: 2rem;
  }

  .gallery-container {
    gap: 2rem;
  }

  .gallery-item {
    border-radius: 15px;
  }

  .footer-container {
    padding: 0 1rem;
  }

  .footer-content {
    flex-direction: column;
    gap: 2rem;
    align-items: center;
  }

  .footer-heading {
    font-size: 1.75rem;
  }

  .contact-phone,
  .address-text {
    font-size: 1.125rem;
  }

  .footer-copyright p {
    font-size: 1.125rem;
  }

  .footer-logo-image {
    height: 80px;
  }
}

@media (max-width: 480px) {
  .main-content {
    padding: 1rem 0;
  }

  .hero-image-wrapper {
    border-radius: 20px;
  }

  .hero-title {
    bottom: 1rem;
    left: 1rem;
  }

  .hero-title h1 {
    font-size: 1.75rem;
  }

  .gallery-section {
    margin-top: 2rem;
  }

  .gallery-container {
    gap: 1.5rem;
  }

  .main-footer {
    margin-top: 2rem;
    padding: 2rem 0 1rem;
  }
}
